home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / ShareMailGiftware / Videokonverter / ffmpeg.SOURCE / h / stdint.h < prev   
Text File  |  2002-07-04  |  267b  |  10 lines

  1. #ifndef _STDINT_H_
  2.  #define _STDINT_H_
  3.  #define PRIu8   "u"
  4.  #define PRIu16  "u"
  5.  typedef unsigned char  uint8_t;
  6.  typedef unsigned short uint16_t;
  7.  typedef unsigned int   uint32_t;
  8.  typedef unsigned long long uint64_t;
  9.  #include <sys/types.h>
  10. #endif /* _STDINT_H_ */